home *** CD-ROM | disk | FTP | other *** search
/ Amiga Format CD 42 / Amiga Format AFCD42 (Issue 126, Aug 1999).iso / -serious- / programming / other / wild / include / clib / loadermodule_protos.h < prev    next >
C/C++ Source or Header  |  1999-05-25  |  782b  |  26 lines

  1. #ifndef CLIB_LOADERMODULE_PROTOS_H
  2. #define CLIB_LOADERMODULE_PROTOS_H
  3.  
  4. /*
  5. **    $VER: drawmodule_protos.h 2.01 (9.12.98)
  6. **
  7. **    modules libraries common prototypes.
  8. **
  9. */
  10.  
  11. #include <exec/types.h>
  12. #include <utility/tagitem.h>
  13. #include <wild/tdcore.h>
  14.  
  15. void        SetModuleTags(struct WildApp *wapp,struct TagItem *tags);
  16. void        GetModuleTags(struct WildApp *wapp,struct TagItem *tags);
  17. BOOL        SetupModule(struct WildApp *wapp,struct TagItem *tags);
  18. void        CloseModule(struct WildApp *wapp);
  19. BOOL        RefreshModule(struct WildApp *wapp);
  20. ULONG        *LOALoadObj(struct TagItem *tags);
  21. ULONG        LOAGetObjAttr(struct WildApp *wapp,ULONG *obj,ULONG attr,ULONG def);
  22. ULONG        *LOANextObjChild(ULONG *obj,ULONG *prec,ULONG type);
  23. void        LOAMadeObjIs(ULONG *obj,ULONG *wildobj);
  24. void        LOAFreeObj(ULONG *obj);
  25.  
  26. #endc